home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 00504_Script_Eagler Payoff < prev    next >
Text File  |  1995-05-21  |  733b  |  27 lines

  1. on exitFrame
  2.   global length, DeadOrNot, snap1, snap2, theMovieName, gtheDay
  3.   if the movieTime of sprite 48 > length then
  4.     put the movietime of sprite 48 into DeadOrNot
  5.     puppetsprite 48, false
  6.     repeat with d = 7 to 10
  7.       puppetsprite d, false
  8.     end repeat
  9.     puppetsprite 48, false
  10.     set the movietime of sprite 48 to 0
  11.     --set the DirectToStage of cast theMovieName to 0
  12.     set the sound of cast theMovieName to 0
  13.     updatestage
  14.     if DeadOrNot >= 2750 then 
  15.       go frame "YouDied"
  16.       exit
  17.     end if
  18.     if snap1 = 0 and snap2 = 0 then
  19.       go frame gtheDay & "NoShots"
  20.     else
  21.       go frame "Darkroom"
  22.     end if
  23.   end if
  24.   puppetsound 0
  25.   updatestage
  26.   go to the frame
  27. end